Minor improvements to the localization updating script to hand a missing Scripts...
[adiumx.git] / Plugins / Stress Test / AIStressTestService.m
blob83d6103dc097ca264438ef84b9adf8fa74eba818
1 /* 
2  * Adium is the legal property of its developers, whose names are listed in the copyright file included
3  * with this source distribution.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6  * General Public License as published by the Free Software Foundation; either version 2 of the License,
7  * or (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
10  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
11  * Public License for more details.
12  * 
13  * You should have received a copy of the GNU General Public License along with this program; if not,
14  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15  */
17 #import "AIStressTestService.h"
18 #import "AIStressTestAccount.h"
19 #import "DCStressTestJoinChatViewController.h"
21 @implementation AIStressTestService
23 //Account Creation
24 - (Class)accountClass{
25         return [AIStressTestAccount class];
28 - (DCJoinChatViewController *)joinChatView{
29         return [DCStressTestJoinChatViewController joinChatView];
32 //Service Description
33 - (NSString *)serviceCodeUniqueID{
34         return @"Stress-Test";
36 - (NSString *)serviceID{
37         return @"Stress Test";
39 - (NSString *)serviceClass{
40         return @"Stress Test";
42 - (NSString *)shortDescription{
43         return @"Stress Test";
45 - (NSString *)longDescription{
46         return @"Stress Test (Das ist verboten)";
48 - (NSCharacterSet *)allowedCharacters{
49         return [NSCharacterSet characterSetWithCharactersInString:@"abcdefghijklmnopqrstuvwxyz0123456789@."];
51 - (NSCharacterSet *)ignoredCharacters{
52         return [NSCharacterSet characterSetWithCharactersInString:@""];
54 - (int)allowedLength{
55         return 20;
57 - (BOOL)caseSensitive{
58         return NO;
60 - (AIServiceImportance)serviceImportance{
61         return AIServiceUnsupported;
63 - (BOOL)supportsProxySettings{
64         return NO;
66 - (BOOL)supportsPassword
68         return NO;
70 @end